vector_plane_projection Function

public pure function vector_plane_projection(x, pln) result(rst)

Projects a vector onto a plane.

Arguments

Type IntentOptional Attributes Name
real(kind=real64), intent(in) :: x(3)

The vector to project.

class(plane), intent(in) :: pln

The plane onto which to project the vector.

Return Value real(kind=real64), (3)

The projected vector.


Contents